home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / demo / vsbeval3 / cus.frm / cus.frm (.txt)
Encoding:
Visual Basic Form  |  1995-08-23  |  4.9 KB  |  176 lines

  1. VERSION 2.00
  2. Begin Form Customer 
  3.    BackColor       =   &H00C0C0C0&
  4.    Caption         =   "Customer"
  5.    ClientHeight    =   4230
  6.    ClientLeft      =   360
  7.    ClientTop       =   2190
  8.    ClientWidth     =   6150
  9.    FillStyle       =   0  'Solid
  10.    Height          =   4830
  11.    HelpContextID   =   25000
  12.    Icon            =   CUS.FRX:0000
  13.    Left            =   300
  14.    LinkTopic       =   "Form3"
  15.    ScaleHeight     =   4230
  16.    ScaleWidth      =   6150
  17.    Top             =   1650
  18.    Width           =   6270
  19.    Begin Frame Frame1 
  20.       BackColor       =   &H00C0C0C0&
  21.       Caption         =   "Order List"
  22.       Height          =   1650
  23.       Left            =   330
  24.       TabIndex        =   11
  25.       Top             =   1860
  26.       Width           =   5445
  27.       Begin Grid Grid1 
  28.          Cols            =   9
  29.          FontBold        =   -1  'True
  30.          FontItalic      =   0   'False
  31.          FontName        =   "MS Sans Serif"
  32.          FontSize        =   9.75
  33.          FontStrikethru  =   0   'False
  34.          FontUnderline   =   0   'False
  35.          Height          =   1080
  36.          Left            =   240
  37.          Rows            =   4
  38.          TabIndex        =   12
  39.          Top             =   360
  40.          Width           =   5055
  41.       End
  42.    End
  43.    Begin CommandButton SaveButton 
  44.       Caption         =   "Save"
  45.       Height          =   375
  46.       Left            =   2925
  47.       TabIndex        =   10
  48.       Top             =   3645
  49.       Width           =   1095
  50.    End
  51.    Begin CommandButton NextCustomerButton 
  52.       Caption         =   "Next Customer"
  53.       Height          =   375
  54.       HelpContextID   =   25030
  55.       Left            =   3555
  56.       TabIndex        =   9
  57.       Top             =   1320
  58.       Width           =   1815
  59.    End
  60.    Begin CommandButton PrevCustomerButton 
  61.       Caption         =   "Previous Customer"
  62.       Height          =   375
  63.       Left            =   1140
  64.       TabIndex        =   8
  65.       Top             =   1305
  66.       Width           =   1815
  67.    End
  68.    Begin CommandButton OrderDetailButton 
  69.       Caption         =   "See Order Details..."
  70.       Height          =   375
  71.       Left            =   360
  72.       TabIndex        =   7
  73.       Top             =   3660
  74.       Width           =   1935
  75.    End
  76.    Begin CommandButton CloseButton 
  77.       Caption         =   "Close"
  78.       Height          =   375
  79.       Left            =   4800
  80.       TabIndex        =   6
  81.       Top             =   3615
  82.       Width           =   975
  83.    End
  84.    Begin TextBox CustomerAddressBox 
  85.       Height          =   795
  86.       HelpContextID   =   25020
  87.       Left            =   4125
  88.       MultiLine       =   -1  'True
  89.       ScrollBars      =   2  'Vertical
  90.       TabIndex        =   5
  91.       Text            =   "Customer address"
  92.       Top             =   210
  93.       Width           =   1665
  94.    End
  95.    Begin TextBox CustomerIDBox 
  96.       Height          =   285
  97.       HelpContextID   =   25010
  98.       Left            =   1575
  99.       TabIndex        =   3
  100.       Text            =   "ID number"
  101.       Top             =   225
  102.       Width           =   1275
  103.    End
  104.    Begin TextBox CustomerNameBox 
  105.       Height          =   315
  106.       Left            =   1590
  107.       TabIndex        =   1
  108.       Text            =   "Customer name"
  109.       Top             =   705
  110.       Width           =   2325
  111.    End
  112.    Begin Label Label3 
  113.       BackColor       =   &H00C0C0C0&
  114.       Caption         =   "Address"
  115.       Height          =   255
  116.       Left            =   3240
  117.       TabIndex        =   4
  118.       Top             =   240
  119.       Width           =   735
  120.    End
  121.    Begin Label Label2 
  122.       BackColor       =   &H00C0C0C0&
  123.       Caption         =   "Customer ID"
  124.       Height          =   255
  125.       Left            =   360
  126.       TabIndex        =   2
  127.       Top             =   240
  128.       Width           =   1095
  129.    End
  130.    Begin Label Label1 
  131.       BackColor       =   &H00C0C0C0&
  132.       Caption         =   "Customer Name"
  133.       Height          =   255
  134.       Left            =   120
  135.       TabIndex        =   0
  136.       Top             =   720
  137.       Width           =   1335
  138.    End
  139.    Begin Menu DBmenu 
  140.       Caption         =   "Database"
  141.       Begin Menu findopt 
  142.          Caption         =   "Find"
  143.       End
  144.       Begin Menu addopt 
  145.          Caption         =   "Add"
  146.       End
  147.       Begin Menu delopt 
  148.          Caption         =   "Delete"
  149.       End
  150.    End
  151.    Begin Menu recmenu 
  152.       Caption         =   "Record"
  153.       Begin Menu clearopt 
  154.          Caption         =   "Clear Fields"
  155.       End
  156.    End
  157.    Begin Menu helpmenu 
  158.       Caption         =   "Help"
  159.    End
  160. Sub Close_Click ()
  161.     Customer.Hide
  162.     Main.Show
  163. End Sub
  164. Sub CloseButton_Click ()
  165.     Customer.Hide
  166.     Main.Show
  167. End Sub
  168. Sub OrderDetail_Click ()
  169.     Order.Show
  170. End Sub
  171. Sub OrderDetailButton_Click ()
  172.     Order.Show
  173. End Sub
  174. Sub Save_Click ()
  175. End Sub
  176.